home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fileInt.h < prev    next >
C/C++ Source or Header  |  1990-09-11  |  1KB  |  48 lines

  1. /*
  2.  * fileInt.h --
  3.  *
  4.  *    Declarations for things shared by the various stdio procedures
  5.  *    that implement I/O to and from files.  The stuff in here is
  6.  *    only used internally by stdio, and isn't exported to the outside
  7.  *    world.
  8.  *
  9.  * Copyright 1988 Regents of the University of California
  10.  * Permission to use, copy, modify, and distribute this
  11.  * software and its documentation for any purpose and without
  12.  * fee is hereby granted, provided that the above copyright
  13.  * notice appear in all copies.  The University of California
  14.  * makes no representations about the suitability of this
  15.  * software for any purpose.  It is provided "as is" without
  16.  * express or implied warranty.
  17.  *
  18.  * $Header: /sprite/src/lib/c/stdio/RCS/fileInt.h,v 1.4 90/09/11 14:27:27 kupfer Exp $ SPRITE (Berkeley)
  19.  */
  20.  
  21. #ifndef _FILEINT
  22. #define _FILEINT
  23.  
  24. #ifndef _STDIO
  25. #include "stdio.h"
  26. #endif
  27.  
  28. #include <cfuncproto.h>
  29.  
  30. /*
  31.  * The streams for files are kept in a linked list pointed to by
  32.  * stdioFileStreams.
  33.  */
  34.  
  35. extern FILE        *stdioFileStreams;
  36.  
  37. extern unsigned char    stdioTempBuffer[];    /* Temporary buffer to use for
  38.                          * writable streams. */
  39.  
  40. extern unsigned char     stdioStderrBuffer[];    /* Static buffer for stderr */
  41.  
  42. extern int    StdioFileCloseProc _ARGS_((FILE *stream));
  43. extern int    StdioFileOpenMode _ARGS_((char *access));
  44. extern void    StdioFileReadProc _ARGS_((FILE *stream));
  45. extern void    StdioFileWriteProc _ARGS_((FILE *stream, int flush));
  46.  
  47. #endif _FILEINT
  48.